Skip to content

Commit 8c1f356

Browse files
committed
Fix formatting
1 parent 48a73d1 commit 8c1f356

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

sycl/doc/extensions/proposed/sycl_ext_oneapi_kernel_compiler.asciidoc

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ kernel_bundle<bundle_state::executable> build(
228228
const kernel_bundle<bundle_state::ext_oneapi_source>& sourceBundle,
229229
PropertyListT props = {})
230230
231-
} // namespace sycl::ext::oneapi::experimental {
231+
} // namespace sycl::ext::oneapi::experimental
232232
----
233233
!====
234234

@@ -300,15 +300,15 @@ namespace sycl::ext::oneapi::experimental {
300300
301301
struct build_options {
302302
std::vector<std::string> opts;
303-
build_options(const std::string &opt); (1)
303+
build_options(const std::string &opt); (1)
304304
build_options(const std::vector<std::string> &opts); (2)
305305
};
306306
using build_options_key = build_options;
307307
308308
template<>
309309
struct is_property_key<build_options_key> : std::true_type {};
310310
311-
} // namespace sycl::ext::oneapi::experimental {
311+
} // namespace sycl::ext::oneapi::experimental
312312
----
313313
!====
314314

@@ -335,14 +335,14 @@ namespace sycl::ext::oneapi::experimental {
335335
336336
struct save_log {
337337
std::string *log;
338-
save_log(std::string *to); (1)
338+
save_log(std::string *to);
339339
};
340340
using save_log_key = save_log;
341341
342342
template<>
343343
struct is_property_key<save_log_key> : std::true_type {};
344344
345-
} // namespace sycl::ext::oneapi::experimental {
345+
} // namespace sycl::ext::oneapi::experimental
346346
----
347347
!====
348348

@@ -361,8 +361,7 @@ provided in the log.
361361
In general, the log information is intended for human consumption, and the
362362
format may not be stable across implementations of this extension.
363363

364-
_Effects (1):_ Constructs a `save_log` property with a pointer to a
365-
`std::string`.
364+
_Effects:_ Constructs a `save_log` property with a pointer to a `std::string`.
366365
When the `build` function completes successfully, this string will contain the
367366
log.
368367

0 commit comments

Comments
 (0)