mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-04 21:15:35 +00:00
ICU-21416 Fix typos in comments
This commit is contained in:
parent
d9ff1888ee
commit
bb5d29b143
13 changed files with 13 additions and 13 deletions
|
@ -387,7 +387,7 @@ _strFromWCS( UChar *dest,
|
|||
* null terminate it and convert wchar_ts to chars
|
||||
*/
|
||||
if(nulLen >= _STACK_BUFFER_CAPACITY){
|
||||
/* Should rarely occcur */
|
||||
/* Should rarely occur */
|
||||
/* allocate new buffer buffer */
|
||||
pWStack =(wchar_t*) uprv_malloc(sizeof(wchar_t) * (nulLen + 1));
|
||||
if(pWStack==NULL){
|
||||
|
|
|
@ -423,7 +423,7 @@ BasicTimeZone::getTimeZoneRulesAfter(UDate start, InitialTimeZoneRule*& initial,
|
|||
goto error;
|
||||
}
|
||||
} else {
|
||||
// Colllect transitions after the start time
|
||||
// Collect transitions after the start time
|
||||
int32_t startTimes;
|
||||
DateTimeRule::TimeRuleType timeType;
|
||||
int32_t idx;
|
||||
|
|
|
@ -1159,7 +1159,7 @@ void TransliteratorParser::setVariableRange(int32_t start, int32_t end, UErrorCo
|
|||
|
||||
/**
|
||||
* Assert that the given character is NOT within the variable range.
|
||||
* If it is, return FALSE. This is neccesary to ensure that the
|
||||
* If it is, return FALSE. This is necessary to ensure that the
|
||||
* variable range does not overlap characters used in a rule.
|
||||
*/
|
||||
UBool TransliteratorParser::checkVariableRange(UChar32 ch) const {
|
||||
|
|
|
@ -210,7 +210,7 @@ private:
|
|||
|
||||
/**
|
||||
* Assert that the given character is NOT within the variable range.
|
||||
* If it is, return false. This is neccesary to ensure that the
|
||||
* If it is, return false. This is necessary to ensure that the
|
||||
* variable range does not overlap characters used in a rule.
|
||||
* @param ch the given character.
|
||||
* @return True, if the given character is NOT within the variable range.
|
||||
|
|
|
@ -95,7 +95,7 @@ public:
|
|||
|
||||
const UnicodeString emptyString;
|
||||
|
||||
// Mappping from source to target styles for alias fallback.
|
||||
// Mapping from source to target styles for alias fallback.
|
||||
int32_t fallBackCache[UDAT_STYLE_COUNT];
|
||||
|
||||
void adoptCombinedDateAndTime(SimpleFormatter *fmtToAdopt) {
|
||||
|
|
|
@ -543,7 +543,7 @@ enum URBNFRuleSetTag {
|
|||
* names in this array will be treated as public rule set names by the API. Each subsequent
|
||||
* element is an array of localizations of these names. The first element of one of these
|
||||
* subarrays is the locale name, and the remaining elements are localizations of the
|
||||
* public rule set names, in the same order as they were listed in the first arrray.</p>
|
||||
* public rule set names, in the same order as they were listed in the first array.</p>
|
||||
* <p>In the syntax, angle brackets '<', '>' are used to delimit the arrays, and comma ',' is used
|
||||
* to separate elements of an array. Whitespace is ignored, unless quoted.</p>
|
||||
* <p>For example:<pre>
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
#include "unicode/uformattedvalue.h"
|
||||
|
||||
|
||||
/* Internal fucntion used by all the test format files */
|
||||
/* Internal function used by all the test format files */
|
||||
UChar* myDateFormat(UDateFormat *dat, UDate d);
|
||||
|
||||
|
||||
|
|
|
@ -265,7 +265,7 @@ UBool UPerfTest::run(){
|
|||
return runTest();
|
||||
}
|
||||
UBool res=FALSE;
|
||||
// Test only the specified fucntion
|
||||
// Test only the specified function
|
||||
for (int i = 1; i < _remainingArgc; ++i) {
|
||||
if (_argv[i][0] != '-') {
|
||||
char* name = (char*) _argv[i];
|
||||
|
|
|
@ -79,7 +79,7 @@ UXMLParser::UXMLParser(UErrorCode &status) :
|
|||
// or "<!DOCTYPE foo [internal dtd]>
|
||||
// TODO: we don't actually parse the DOCTYPE or internal subsets.
|
||||
// Some internal dtd subsets could confuse this simple-minded
|
||||
// attempt at skipping over them, specifically, occcurences
|
||||
// attempt at skipping over them, specifically, occurrences
|
||||
// of closeing square brackets. These could appear in comments,
|
||||
// or in parameter entity declarations, for example.
|
||||
mXMLDoctype(UnicodeString(
|
||||
|
|
|
@ -1440,7 +1440,7 @@ public abstract class NumberFormat extends UFormat {
|
|||
static NumberFormat createInstance(ULocale desiredLocale, int choice) {
|
||||
// If the choice is PLURALCURRENCYSTYLE, the pattern is not a single
|
||||
// pattern, it is a pattern set, so we do not need to get them here.
|
||||
// If the choice is ISOCURRENCYSTYLE, the pattern is the currrency
|
||||
// If the choice is ISOCURRENCYSTYLE, the pattern is the currency
|
||||
// pattern in the locale but by replacing the single currency sign
|
||||
// with double currency sign.
|
||||
String pattern = getPattern(desiredLocale, choice);
|
||||
|
|
|
@ -1325,7 +1325,7 @@ class TransliteratorParser {
|
|||
|
||||
/**
|
||||
* Assert that the given character is NOT within the variable range.
|
||||
* If it is, signal an error. This is neccesary to ensure that the
|
||||
* If it is, signal an error. This is necessary to ensure that the
|
||||
* variable range does not overlap characters used in a rule.
|
||||
*/
|
||||
private void checkVariableRange(int ch, String rule, int start) {
|
||||
|
|
|
@ -26,7 +26,7 @@ public class TransliteratorInputMethodDescriptor implements InputMethodDescripto
|
|||
private ResourceBundle rb = null;
|
||||
|
||||
/**
|
||||
* Creates the Transliterator IME this is automatically callled by the
|
||||
* Creates the Transliterator IME this is automatically called by the
|
||||
* JVM when the Transliterator IME is selected from the input method list.
|
||||
*
|
||||
* @return InputMethod The Transliterator IME object.
|
||||
|
|
|
@ -214,7 +214,7 @@ class BundleItemCreationDialog extends JDialog {
|
|||
lookups.remove(name);
|
||||
}
|
||||
}
|
||||
// Add new lookups if neccesary
|
||||
// Add new lookups if necessary
|
||||
if (currentTrans != null && currentTrans.indexOf("{") >= 0) {
|
||||
while (currentTrans.indexOf("{") >= 0) {
|
||||
currentTrans = currentTrans.substring(currentTrans.indexOf("{")+1,currentTrans.length());
|
||||
|
|
Loading…
Add table
Reference in a new issue