7 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -102,7 +102,7 @@ public function read($bytes = 2082) {
102
102
103
103
/**
104
104
* Retrieve the file content in one go
105
- * Once you retreive the content you cannot use MimeMailParser_attachment::read()
105
+ * Once you retrieve the content you cannot use MimeMailParser_attachment::read()
106
106
* @return String
107
107
*/
108
108
public function getContent () {
Original file line number Diff line number Diff line change @@ -276,7 +276,7 @@ private function getBucketData($bucket_key, $rebuild_data = null) {
276
276
277
277
278
278
/**
279
- * Rebuild a cache bucket, amending existing data if avialable .
279
+ * Rebuild a cache bucket, amending existing data if available .
280
280
*
281
281
* @param int Bucket key, from @{method:getBucketKey}.
282
282
* @param array Existing bucket data.
Original file line number Diff line number Diff line change @@ -115,7 +115,7 @@ We use both autoincrementing IDs and global PHIDs because each is useful in
115
115
different contexts. Autoincrementing IDs are chronologically ordered and allow
116
116
us to construct short, human-readable object names (like D2258) and URIs. Global
117
117
PHIDs allow us to represent relationships between different types of objects in
118
- a homogenous way.
118
+ a homogeneous way.
119
119
120
120
For example, the concept of "subscribers" is more powerfully done with PHIDs
121
121
because we could theoretically have users, projects, teams, and more all as
@@ -148,7 +148,7 @@ to avoid it if possible.
148
148
There are three simple steps to update the schema:
149
149
150
150
# Create a `.sql` file in `resources/sql/patches/`. This file should:
151
- - Contain the approprate MySQL commands to update the schema.
151
+ - Contain the appropriate MySQL commands to update the schema.
152
152
- Be named as `YYYYMMDD.patchname.ext`. For example, `20130217.example.sql`.
153
153
- Use `${NAMESPACE}` rather than `phabricator` for database names.
154
154
- Use `COLLATE utf8_bin` for any columns that are to be used as identifiers,
Original file line number Diff line number Diff line change @@ -96,7 +96,7 @@ The regex should capture these named patterns with `(?P<name>...)`:
96
96
not present in the output. If no severity capturing group is present,
97
97
messages are raised with "error" severity. If multiple severity capturing
98
98
groups are present, messages are raised with the highest captured
99
- serverity . Capturing groups like `error` supersede the `severity`
99
+ severity . Capturing groups like `error` supersede the `severity`
100
100
capturing group.
101
101
- `error` (optional) Match some nonempty substring to indicate that this
102
102
message has "error" severity.
Original file line number Diff line number Diff line change @@ -416,7 +416,7 @@ public function putObjectsInWorkspace(array $objects) {
416
416
* searches both the current query's workspace and the workspaces of parent
417
417
* queries.
418
418
*
419
- * @param list<phid> List of PHIDs to retreive .
419
+ * @param list<phid> List of PHIDs to retrieve .
420
420
* @return this
421
421
* @task workspace
422
422
*/
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ JX.install('TypeaheadSource', {
25
25
* the server. The purpose of normalization is to strip out irrelevant data,
26
26
* like uppercase/lowercase, extra spaces, or punctuation. By default,
27
27
* the @{JX.TypeaheadNormalizer} is used to normalize strings, but you may
28
- * want to provide a different normalizer, particiularly if there are
28
+ * want to provide a different normalizer, particularly if there are
29
29
* special characters with semantic meaning in your object names.
30
30
*
31
31
* @param function
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ JX.behavior('dashboard-query-panel-select', function(config) {
35
35
}
36
36
37
37
// When the user changes the selected search engine, update the query
38
- // control to show avialable queries for that engine.
38
+ // control to show available queries for that engine.
39
39
function update ( ) {
40
40
var app = app_control . value ;
41
41
0 commit comments