Skip to content

Commit e495ce4

Browse files
committedJul 12, 2014
Fix various spelling mistakes
Summary: Minor change, self-explanatory. Test Plan: Eye-ball it Reviewers: epriestley, #blessed_reviewers Reviewed By: epriestley, #blessed_reviewers Subscribers: epriestley, Korvin Differential Revision: https://secure.phabricator.com/D9911
1 parent ae263dd commit e495ce4

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed
 

‎externals/mimemailparser/attachment.class.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ public function read($bytes = 2082) {
102102

103103
/**
104104
* 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()
106106
* @return String
107107
*/
108108
public function getContent() {

‎src/applications/repository/graphcache/PhabricatorRepositoryGraphCache.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ private function getBucketData($bucket_key, $rebuild_data = null) {
276276

277277

278278
/**
279-
* Rebuild a cache bucket, amending existing data if avialable.
279+
* Rebuild a cache bucket, amending existing data if available.
280280
*
281281
* @param int Bucket key, from @{method:getBucketKey}.
282282
* @param array Existing bucket data.

‎src/docs/contributor/database.diviner

+2-2
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ We use both autoincrementing IDs and global PHIDs because each is useful in
115115
different contexts. Autoincrementing IDs are chronologically ordered and allow
116116
us to construct short, human-readable object names (like D2258) and URIs. Global
117117
PHIDs allow us to represent relationships between different types of objects in
118-
a homogenous way.
118+
a homogeneous way.
119119

120120
For example, the concept of "subscribers" is more powerfully done with PHIDs
121121
because we could theoretically have users, projects, teams, and more all as
@@ -148,7 +148,7 @@ to avoid it if possible.
148148
There are three simple steps to update the schema:
149149

150150
# 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.
152152
- Be named as `YYYYMMDD.patchname.ext`. For example, `20130217.example.sql`.
153153
- Use `${NAMESPACE}` rather than `phabricator` for database names.
154154
- Use `COLLATE utf8_bin` for any columns that are to be used as identifiers,

‎src/docs/user/userguide/arcanist_lint_script_and_regex.diviner

+1-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ The regex should capture these named patterns with `(?P<name>...)`:
9696
not present in the output. If no severity capturing group is present,
9797
messages are raised with "error" severity. If multiple severity capturing
9898
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`
100100
capturing group.
101101
- `error` (optional) Match some nonempty substring to indicate that this
102102
message has "error" severity.

‎src/infrastructure/query/policy/PhabricatorPolicyAwareQuery.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -416,7 +416,7 @@ public function putObjectsInWorkspace(array $objects) {
416416
* searches both the current query's workspace and the workspaces of parent
417417
* queries.
418418
*
419-
* @param list<phid> List of PHIDs to retreive.
419+
* @param list<phid> List of PHIDs to retrieve.
420420
* @return this
421421
* @task workspace
422422
*/

‎webroot/rsrc/externals/javelin/lib/control/typeahead/source/TypeaheadSource.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ JX.install('TypeaheadSource', {
2525
* the server. The purpose of normalization is to strip out irrelevant data,
2626
* like uppercase/lowercase, extra spaces, or punctuation. By default,
2727
* 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
2929
* special characters with semantic meaning in your object names.
3030
*
3131
* @param function

‎webroot/rsrc/js/application/dashboard/behavior-dashboard-query-panel-select.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ JX.behavior('dashboard-query-panel-select', function(config) {
3535
}
3636

3737
// 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.
3939
function update() {
4040
var app = app_control.value;
4141

0 commit comments

Comments
 (0)
Failed to load comments.