Bug 1460874

Summary: In section 2.2.3 the example "date --set 2013-06-02 23:26:00" don't have quote mark
Product: Red Hat Enterprise Linux 7 Reporter: Nolan Wei <lwei>
Component: doc-System_Administrators_GuideAssignee: Marie Hornickova <mdolezel>
Status: CLOSED CURRENTRELEASE QA Contact: ecs-bugs
Severity: low Docs Contact:
Priority: unspecified    
Version: 7.0CC: rhel-docs
Target Milestone: rcKeywords: Documentation
Target Release: ---   
Hardware: Unspecified   
OS: Unspecified   
Whiteboard:
Fixed In Version: Doc Type: If docs needed, set a value
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2017-08-10 12:00:05 UTC Type: Bug
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:

Description Nolan Wei 2017-06-13 02:52:25 UTC
Document URL: 
https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux/7-Beta/html/System_Administrators_Guide/sect-Configuring_the_Date_and_Time-date.html#sect-Configuring_the_Date_and_Time-date-Date

Section Number and Name: 
2.2.3. Changing the Current Date

Describe the issue: 
In the example to change the system date, it's said.

To change the current date, run the date command with the --set or -s option as root:
date --set YYYY-MM-DD
To change the current date to 2 June 2013 and keep the current time (11:26 p.m.), run the following command as root:
~]# date --set 2013-06-02 23:26:00



But if we do a test in our RHEL7 system, run the command "# date --set 2013-06-02 23:26:00" immediately, it will prompts error.

# date --set 2013-06-02 23:26:00
date: the argument ‘23:26:00’ lacks a leading '+';
when using an option to specify date(s), any non-option
argument must be a format string beginning with '+'
Try 'date --help' for more information


We need the single quotation or double quotation mark here.
# date --set '2013-06-02 23:26:00'
Sun Jun  2 23:26:00 CST 2013


Suggestions for improvement: 
Modify this section 2.2.3 and add the single quotation or double quotation mark in the example.

Additional information: 
This also happens in 7.4 system administrator guide.