Skip to content

Commit 8a1fc5f

Browse files
authored
fix: typo grammar spell (#958)
* fix: typo grammar spelling Signed-off-by: arfy slowy <[email protected]>
1 parent 345d608 commit 8a1fc5f

File tree

20 files changed

+24
-24
lines changed

20 files changed

+24
-24
lines changed

alias-test/src/test/python/aliastest/generate/generator_helper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,7 @@ def _slim_maps(self, methods_map, mbean_info_map):
413413
"""
414414
Use the mbean info map containment type to pluck out (best able) the subfolders
415415
:param methods_map: contains the methods from the mbean interface
416-
:param mbean_info_map: contans the property descriptors from the MBeanInfo
416+
:param mbean_info_map: contains the property descriptors from the MBeanInfo
417417
"""
418418
self._remove_subfolders(methods_map, mbean_info_map)
419419
self._remove_unused_methods(methods_map)

alias-test/src/test/python/aliastest/util/all_utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ def populate_test_files_location(kwargs):
331331
"""
332332
Find the test files path from the argument list, for the test file location command. This is
333333
populated in the global location of the utils file, for use during this instance of the integration test.
334-
Any generated json files will be stored and read from this location, and verification reports will be strored
334+
Any generated json files will be stored and read from this location, and verification reports will be stored
335335
at this location.
336336
:param kwargs: command line argument map
337337
"""
@@ -544,7 +544,7 @@ def _write_dictionary_to_json_file(dictionary, writer, indent=''):
544544
Write the python dictionary in json syntax using the provided writer stream.
545545
:param dictionary: python dictionary to convert to json syntax
546546
:param writer: where to write the dictionary into json syntax
547-
:param indent: current string indention of the json syntax. If not provided, indent is an empty string
547+
:param indent: current string indentation of the json syntax. If not provided, indent is an empty string
548548
"""
549549
_method_name = '_write_dictionary_to_json_file'
550550
_start_dict = '{'

alias-test/src/test/python/aliastest/verify/verifier_helper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1236,7 +1236,7 @@ def object_type(attribute_info):
12361236
"""
12371237
Determine if the attribute is an object or reference type in WLST.
12381238
:param attribute_info: Information gathered about the attribute
1239-
:return: True if the attribut is an object type in WLST
1239+
:return: True if the attribute is an object type in WLST
12401240
"""
12411241
lsa_type, get_type, cmo_type = _get_attribute_types(attribute_info)
12421242
return lsa_type == alias_constants.OBJECT or \

core/src/main/java/oracle/weblogic/deploy/create/RCURunner.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525

2626
/**
27-
* This class does all the work to drop and recreate the RCU schemas besed on the domain type definition.
27+
* This class does all the work to drop and recreate the RCU schemas based on the domain type definition.
2828
*/
2929
public class RCURunner {
3030
private static final String CLASS = RCURunner.class.getName();

core/src/main/java/oracle/weblogic/deploy/util/FileUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -808,7 +808,7 @@ public boolean accept(File dir, String name) {
808808

809809

810810
/**
811-
* Convert an octal number into Posix File Permisions.
811+
* Convert an octal number into Posix File Permissions.
812812
* @param octals 3 octal digits representing posix file permissions rwxrwxrwx
813813
* @return a set of Posix file permissions
814814
*/

core/src/main/java/oracle/weblogic/deploy/util/PyOrderedDict.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ public boolean __contains__(PyObject key) {
156156

157157
/**
158158
* The internal method that the copy.deepcopy() implementation looks for
159-
* to preform a deepcopy on non-built-in types. Note that this implementation
159+
* to perform a deepcopy on non-built-in types. Note that this implementation
160160
* has limitations in that it only knows how to deepcopy a limited set of types
161161
* (NoneType, int, long, float, str, list, dict, and PyOrderedDict). Any other
162162
* types encountered will log an error and return the original object without

core/src/main/java/oracle/weblogic/deploy/util/WLSDeployZipFile.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ public Map<String, InputStream> getZipEntries() throws WLSDeployArchiveIOExcepti
220220
*
221221
* @param key the beginning part of the entry names to match
222222
* @return a map of InputStreams keyed by the entry name
223-
* @throws WLSDeployArchiveIOException if an IOException occured while rading or writing changes
223+
* @throws WLSDeployArchiveIOException if an IOException occurred while rading or writing changes
224224
*/
225225
public Map<String, InputStream> getZipEntries(String key) throws WLSDeployArchiveIOException {
226226
final String METHOD = "getZipEntries";

core/src/main/python/wlsdeploy/aliases/location_context.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def append_location(self, *args, **kwargs):
4242

4343
def pop_location(self, index=None):
4444
"""
45-
Pops (or removes) a location from the exising location context
45+
Pops (or removes) a location from the existing location context
4646
:param index: integer Index of list item to pop
4747
:return: The ``model_folder`` of list item at ``index``
4848
"""

core/src/main/python/wlsdeploy/aliases/password_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def get_wlst_attribute_name(attribute_info, attribute_value, wlst_mode):
5757
Returns the corrected WLST attribute name for the specified parameters.
5858
The "Encrypted" suffix is removed from online dual-password attributes for use with unencrypted values.
5959
:param attribute_info: the attribute information to be checked
60-
:param attribute_value: the vaue to be checked for encryption
60+
:param attribute_value: the value to be checked for encryption
6161
:param wlst_mode: the offline or online type to be checked
6262
:return: the corrected value, or None if no correction was required
6363
"""

core/src/main/python/wlsdeploy/json/json_translator.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ def _write_dictionary_to_json_file(self, dictionary, writer, indent=''):
155155
Write the python dictionary in json syntax using the provided writer stream.
156156
:param dictionary: python dictionary to convert to json syntax
157157
:param writer: where to write the dictionary into json syntax
158-
:param indent: current string indention of the json syntax. If not provided, indent is an empty string
158+
:param indent: current string indentation of the json syntax. If not provided, indent is an empty string
159159
"""
160160
_method_name = '_write_dictionary_to_json_file'
161161
_start_dict = '{'
@@ -192,7 +192,7 @@ def _write_list_to_json_file(self, alist, writer, indent=''):
192192
Write the python list in json syntax using the provided writer stream.
193193
:param alist: python list to convert to json syntax
194194
:param writer: where to write the list into json syntax
195-
:param indent: current string indention of the json syntax. If not provided, indent is an empty string
195+
:param indent: current string indentation of the json syntax. If not provided, indent is an empty string
196196
"""
197197
writer.write('[')
198198
end_line = ''

0 commit comments

Comments
 (0)