diff --git a/adoc/chapters/programming_interface.adoc b/adoc/chapters/programming_interface.adoc index 967ba272..7479e573 100644 --- a/adoc/chapters/programming_interface.adoc +++ b/adoc/chapters/programming_interface.adoc @@ -1296,7 +1296,7 @@ The context has the asynchronous error handler [code]#asyncHandler#. .[apititle]#Constructor with platform# [source,role=synopsis,id=api:context-ctor-platform] ---- -explicit context(const platform &plt, const property_list &propList = {}) +explicit context(const platform& plt, const property_list& propList = {}) ---- _Effects:_ Constructs a [code]#context# object that contains all of the devices @@ -1311,8 +1311,8 @@ platform [code]#plt# contains no devices. .[apititle]#Constructor with platform and async handler# [source,role=synopsis,id=api:context-ctor-platform-async-handler] ---- -explicit context(const platform &plt, async_handler asyncHandler, - const property_list &propList = {}) +explicit context(const platform& plt, async_handler asyncHandler, + const property_list& propList = {}) ---- _Effects:_ Constructs a [code]#context# object that contains all of the devices diff --git a/adoc/headers/context.h b/adoc/headers/context.h index 59c60034..740f4ed9 100644 --- a/adoc/headers/context.h +++ b/adoc/headers/context.h @@ -14,10 +14,10 @@ class context { explicit context(const device& dev, async_handler asyncHandler, const property_list& propList = {}); - explicit context(const platform &plt, const property_list &propList = {}); + explicit context(const platform& plt, const property_list& propList = {}); - explicit context(const platform &plt, async_handler asyncHandler, - const property_list &propList = {}); + explicit context(const platform& plt, async_handler asyncHandler, + const property_list& propList = {}); explicit context(const std::vector& deviceList, const property_list& propList = {});