diff options
author | Gunnar Mills <gmills@us.ibm.com> | 2017-10-25 20:37:24 -0500 |
---|---|---|
committer | Gunnar Mills <gmills@us.ibm.com> | 2017-10-25 20:37:47 -0500 |
commit | f01d0ba3e2da4944a811fc4f57815ac97ee062ed (patch) | |
tree | 3d3716d24c033833cc1f4b98dacf618ae6f59c28 | |
parent | fb3825ceb1d79e9f143e294ff9d20f0392061f2c (diff) | |
download | phosphor-rest-server-f01d0ba3e2da4944a811fc4f57815ac97ee062ed.tar.gz phosphor-rest-server-f01d0ba3e2da4944a811fc4f57815ac97ee062ed.zip |
Spelling fixes
Change-Id: If4902b7c900f4108f4563a49ee8aca18294b32f7
Signed-off-by: Gunnar Mills <gmills@us.ibm.com>
-rw-r--r-- | module/obmc/wsgi/apps/rest_dbus.py | 2 | ||||
-rw-r--r-- | module/obmc/wsgi/examples/websockets/client_simple.html | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/module/obmc/wsgi/apps/rest_dbus.py b/module/obmc/wsgi/apps/rest_dbus.py index 323e7da..3f84ddd 100644 --- a/module/obmc/wsgi/apps/rest_dbus.py +++ b/module/obmc/wsgi/apps/rest_dbus.py @@ -1242,7 +1242,7 @@ class App(Bottle): return route, args def custom_error_handler(self, res, error): - ''' Allow plugins to modify error reponses too via this custom + ''' Allow plugins to modify error responses too via this custom error handler. ''' response_object = {} diff --git a/module/obmc/wsgi/examples/websockets/client_simple.html b/module/obmc/wsgi/examples/websockets/client_simple.html index 7d75035..cdc8be5 100644 --- a/module/obmc/wsgi/examples/websockets/client_simple.html +++ b/module/obmc/wsgi/examples/websockets/client_simple.html @@ -2,9 +2,9 @@ <html> <head> <script type="text/javascript"> - // This simple example subscribes, via websocket, to certain events occuring + // This simple example subscribes, via websocket, to certain events occurring // on the BMC. Specfically, it's interested in an d-bus events (object - // creations, property changes), occuring in the d-bus namespaces + // creations, property changes), occurring in the d-bus namespaces // /xyz/openbmc_project/logging and /xyz/openbmc_project/sensors. It's also // interested in the interfaces xyz.openbmc_project.Logging.Entry and // xyz.openbmc_project.Sensor.Value being added, or property changes to @@ -23,7 +23,7 @@ // Send in array of d-bus paths and interfaces of interest over the // websocket. Either/both of them can be an empty array. The arrays // need to be sent in a JSON dictionary. - // Client will be notified of events occuring on these paths and/or + // Client will be notified of events occurring on these paths and/or // interfaces. var data = JSON.stringify( { |