You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/api/security/TLS.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -63,4 +63,4 @@ As the [examples](#mbed-tls-examples) show, you *must* call the `mbedtls_platfor
63
63
64
64
## Other resources
65
65
66
-
The [Mbed TLS website](https://tls.mbed.org) contains many other useful resources for developers, such as [developer documentation](https://tls.mbed.org/dev-corner), [knowledge base articles](https://tls.mbed.org/kb) and a [support forum](https://forums.mbed.com/c/mbed-tls).
66
+
The [Mbed TLS website](https://www.trustedfirmware.org/projects/mbed-tls/) contains many other useful resources for developers, such as [developer documentation](https://mbed-tls.readthedocs.io/en/latest/), [knowledge base articles](https://mbed-tls.readthedocs.io/en/latest/kb/) and a [support forum](https://forums.mbed.com/c/mbed-tls).
Copy file name to clipboardExpand all lines: docs/contributing/guidelines/workflow.md
+7-8Lines changed: 7 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,7 @@ The current maintainers are:
22
22
23
23
## Contributions
24
24
25
-
Before contributing an enhancement (for example, a new feature or new port), please [discuss it on the forums](https://os.mbed.com/forum/bugs-suggestions/) to avoid duplication of work, as we or others might be working on a related feature.
25
+
Before contributing an enhancement (for example, a new feature or new port), please [discuss it on the forums](https://forums.mbed.com/) to avoid duplication of work, as we or others might be working on a related feature.
26
26
27
27
We can only accept contributions through GitHub if you create a pull request from forked versions of our repositories. This allows us to review the contributions in an easy-to-use and reliable way, under public scrutiny.
28
28
@@ -148,7 +148,7 @@ Each feature has a Mbed OS technical lead. This person is responsible for:
148
148
- Reviewing any addition to the feature branch.
149
149
- Approving all feature change pull requests.
150
150
151
-
Feature branches do not need to comply with our workflow. They are an exception, along with the following:
151
+
Feature branches do not need to comply with our workflow. They are an exception, along with the following:
152
152
- Merging pull requests to feature branches by a tech lead.
153
153
- Cases where breaking CI is possible (it is recommended to fix errors but not always feasible).
154
154
@@ -195,7 +195,7 @@ Each pull request goes through the following workflow:
195
195
196
196
Mergify bot drives our workflow. Its settings are defined in the file [`mergify.yml`](https://github.com/ARMmbed/mbed-os/blob/master/.mergify.yml). The Mbed OS maintainers are responsible for moving pull requests through the workflow states with help from the mergify bot.
197
197
198
-
Each state is time-boxed. In most cases, sufficient time is provided to move to another state. The ciarmcom bot periodically checks that pending activities on pull requests are completed in a timely manner.
198
+
Each state is time-boxed. In most cases, sufficient time is provided to move to another state. The ciarmcom bot periodically checks that pending activities on pull requests are completed in a timely manner.
199
199
<center>
200
200
201
201
| State | Limit (days) |
@@ -208,7 +208,7 @@ Each state is time-boxed. In most cases, sufficient time is provided to move to
208
208
</center>
209
209
210
210
211
-
If the pull request is idle in a state for longer than the allowed time, our bot will add the 'stale' label alongside a comment nudging the user or reviewer to carry out any necessary work. This label will only be removed when the action required to move the pull request forward is completed.
211
+
If the pull request is idle in a state for longer than the allowed time, our bot will add the 'stale' label alongside a comment nudging the user or reviewer to carry out any necessary work. This label will only be removed when the action required to move the pull request forward is completed.
212
212
213
213
Pull requests are closed if they are idle for more than two weeks. The author or the maintainer can reopen it at any time.
214
214
@@ -289,10 +289,10 @@ The following labels summarize the scope of the pull request:
289
289
290
290
### Documentation contribution labels
291
291
292
-
The [documentation repository](https://github.com/ARMmbed/mbed-os-5-docs) uses some of the same labels that the `mbed-os` repository does. In addition, it includes:
292
+
The [documentation repository](https://github.com/ARMmbed/mbed-os-5-docs) uses some of the same labels that the `mbed-os` repository does. In addition, it includes:
293
293
294
294
-*code dependency* - The feature or change this pull request describes has not yet merged into `master` in `mbed-os`. Even if all the required reviewers have reviewed and approved this pull request, it must wait to merge until its code does.
295
-
-*wait to merge* - This pull request is a work in progress and is not yet ready for full review.
295
+
-*wait to merge* - This pull request is a work in progress and is not yet ready for full review.
296
296
-*Scripting work - not for writers* - This issue requires a change too large or frequent for us to do manually. Instead, a script needs to be created to fix this issue.
297
297
-*help wanted* - The documentation team does not know how to answer this question and welcomes help in answering it.
298
298
@@ -308,8 +308,7 @@ If repository contains the following note in Readme.md, it was archived (read-on
308
308
309
309
To deprecate a repository, please do:
310
310
311
-
1. Add deprecation note to Readme.md in the repository.
311
+
1. Add deprecation note to Readme.md in the repository.
312
312
1. Add "DEPRECATED:" to "About" section (it is useful in Github search).
313
313
1. Set repository to read only (Github archive option).
314
314
1. Update references in our CI or documentation (deprecation notice or updated references to available replacement).
If you would like to join a working group, we welcome your contributions via the groups linked above. If you have a suggestion for a new working group, [please add them to our Forum here](https://forums.mbed.com/t/mbed-os-working-groups/11730).
12
+
If you would like to join a working group, we welcome your contributions via the groups linked above. If you have a suggestion for a new working group, [please add them to our forum here](https://forums.mbed.com/t/mbed-os-working-groups/11730).
Copy file name to clipboardExpand all lines: docs/debugging-testing/debug/run_and_compile_time_errors.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ Common errors are:
9
9
- Missing quotes or brackets (`""`, `()`, `[]` or `{}`). These are used in pairs to contain various types of statement. The compiler reports an error if you have not used them in correct pairings.
10
10
- Always tackle the first reported error because later errors may be as a result of the first one and will disappear you correct the first one.
11
11
12
-
For more information about compile time errors or warning, please see [the list of Mbed OS defined error codes and descriptions](../apis/error-handling.html#list-of-mbed-os-defined-error-codes-and-descriptions). If you have questions about a compile time error or warning that you do not understand, please post to the [Arm Mbed forums](https://os.mbed.com/questions/).
12
+
For more information about compile time errors or warning, please see [the list of Mbed OS defined error codes and descriptions](../apis/error-handling.html#list-of-mbed-os-defined-error-codes-and-descriptions). If you have questions about a compile time error or warning that you do not understand, please post to the [Arm Mbed OS support forum](https://forums.mbed.com/).
Copy file name to clipboardExpand all lines: docs/quick-start/further_reading.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -19,4 +19,4 @@
19
19
20
20
- Other resources:
21
21
-[Components database](https://os.mbed.com/components/): libraries and example code for various hardware and software components.
22
-
-[Mbed OS support forum](https://forums.mbed.com/): a resource of questions and answers and an active user community. Ask your questions here first.
22
+
-[Arm Mbed OS support forum](https://forums.mbed.com/): a resource of questions and answers and an active user community. Ask your questions here first.
0 commit comments