-
Notifications
You must be signed in to change notification settings - Fork 876
Content edits in the Angular 2 Guide. #3159
Conversation
scope for this page), as well as framework support for | ||
*two-way data binding, change tracking, validation, and error handling*, | ||
which you'll learn about on this page." | ||
--> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes please
|
||
.l-sub-section | ||
:marked | ||
That's not the only way to create a form but it's the way we'll cover in this guide. | ||
That's not the only way to create a form but it's the way that's covered in this page. | ||
// CF: Is this note necessary? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It is but it should be more descriptive that there two choices: template-driven and reactive and that this guide focuses on template-driven forms.
@juleskremer thanks for your comments. I committed some updates based on your feedback. I have a few more questions in the page--please search for "CF:" |
@juleskremer My latest commit is an edit of the Glossary page. I added several comments with questions. Search for "CF:". Thanks! |
public/docs/ts/latest/glossary.jade
Outdated
the component class, thereby attaching to the class the essential component metadata | ||
that Angular needs to create a component instance and render it with its template | ||
as a view. | ||
<!-- CF: What do "it" and "its" refer to? The component class, component metadata, or component instance? --> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the component with it's template.
public/docs/ts/latest/glossary.jade
Outdated
@@ -164,7 +166,10 @@ a#aot | |||
.l-sub-section | |||
:marked | |||
The practice of writing compound words or phrases such that each word is separated by a dash or hyphen (`-`). | |||
This form is also known as [kebab-case](#kebab-case). | |||
This form is also known as kebab-case. | |||
<!-- CF: I removed the link to the kebab-case glossary entry because the entry has no additional |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm
public/docs/ts/latest/glossary.jade
Outdated
|
||
Angular provides and relies upon its own sophisticated | ||
[dependency injection](!{docsLatest}/guide/dependency-injection.html) system | ||
dependency-injection system | ||
<!-- CF: I removed the link here because the same link is at the end of this definition. --> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm
public/docs/ts/latest/glossary.jade
Outdated
|
||
A service is a class with a focused purpose. | ||
We often create a service to implement features that are | ||
<!-- CF: Removed the first sentence/paragraph because it's redundant. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm
public/docs/ts/latest/glossary.jade
Outdated
[promises](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise), and | ||
[XHR](https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest) | ||
<!-- CF: This link goes to a mozilla page titled "XMLHttpRequest". XHR is mentioned only twice, starting |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes
If we ignore the `pristine` state, we would hide the message only when the value is valid. | ||
If we arrive in this component with a new (blank) hero or an invalid hero, | ||
we'll see the error message immediately, before we've done anything. | ||
<!-- CF: How about "developers" or "users" (not sure which is appropriate) instead of "folks"? --> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
developers
|
||
Some folks find that behavior disconcerting. | ||
<!-- CF: How about "developers" or "users" (not sure which is appropriate) instead of "folks"? --> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
developers
…tch the first time.
@juleskremer thanks for your feedback. I've updated the "Forms" and "Glossary" pages with your feedback. I also fixed a few issues that I missed on my first pass. |
So there's good news and bad news. 👍 The good news is that everyone that needs to sign a CLA (the pull request submitter and all commit authors) have done so. Everything is all good there. 😕 The bad news is that it appears that one or more commits were authored by someone other than the pull request submitter. We need to confirm that they're okay with their commits being contributed to this project. Please have them confirm that here in the pull request. Note to project maintainer: This is a terminal state, meaning the |
1 similar comment
So there's good news and bad news. 👍 The good news is that everyone that needs to sign a CLA (the pull request submitter and all commit authors) have done so. Everything is all good there. 😕 The bad news is that it appears that one or more commits were authored by someone other than the pull request submitter. We need to confirm that they're okay with their commits being contributed to this project. Please have them confirm that here in the pull request. Note to project maintainer: This is a terminal state, meaning the |
This reverts commit 0149786. this breaks harp compilation
@juleskremer Here are my edits to the "Forms" page.