docs: fix documentation links and formatting#67661
Closed
ibrahim-hussien-dev wants to merge 1 commit intoangular:mainfrom
Closed
docs: fix documentation links and formatting#67661ibrahim-hussien-dev wants to merge 1 commit intoangular:mainfrom
ibrahim-hussien-dev wants to merge 1 commit intoangular:mainfrom
Conversation
|
Thanks for your pull request! It looks like this may be your first contribution to a Google open source project. Before we can look at your pull request, you'll need to sign a Contributor License Agreement (CLA). View this failed invocation of the CLA check for more information. For the most up to date status, view the checks section at the bottom of the pull request. |
0d39bac to
c4b5047
Compare
- Fix broken markdown links in binding.md (missing leading /) - Add missing link to Dependency Injection guide in ng-container.md - Update NOTE formatting to markdown blockquote style for consistency
c4b5047 to
8eca291
Compare
SkyZeroZx
reviewed
Mar 12, 2026
| If an element has multiple bindings for the same CSS class, Angular resolves collisions by following its style precedence order. | ||
|
|
||
| NOTE: Class bindings do not support space-separated class names in a single key. They also don't support mutations on objects as the reference of the binding remains the same. If you need one or the other, use the [ngClass](/api/common/NgClass) directive. | ||
| > **Note:** Class bindings do not support space-separated class names in a single key. They also don't support mutations on objects as the reference of the binding remains the same. If you need one or the other, use the [ngClass](/api/common/NgClass) directive. |
Contributor
There was a problem hiding this comment.
This doesn't seem necessary; it currently works as NOTE: without any problems
SkyZeroZx
reviewed
Mar 12, 2026
| Angular supports binding dynamic values into object properties and HTML attributes with square brackets. | ||
|
|
||
| You can bind to properties on an HTML element's DOM instance, a [component](guide/components) instance, or a [directive](guide/directives) instance. | ||
| You can bind to properties on an HTML element's DOM instance, a [component](/guide/components) instance, or a [directive](/guide/directives) instance. |
Contributor
There was a problem hiding this comment.
The / is also not necessary; it is validated in both /guide/components and guide/components.
Member
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR fixes several small documentation improvements across Angular.
Changes
binding.md - Fixed broken markdown links (added missing leading /)
binding.md - Updated NOTE formatting
ng-container.md - Added missing Dependency Injection guide link
All changes are minimal, safe documentation-only improvements. No functional code changes.