From b6e23f1b41a6c191d1a92c3e007ee9b1e54d9117 Mon Sep 17 00:00:00 2001 From: Bruno Dias Date: Mon, 20 Nov 2023 20:31:01 -0300 Subject: [PATCH] fix typo on documentation shcheduler -> scheduler. --- man/bpe.htm | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/man/bpe.htm b/man/bpe.htm index 48b3495..dc67797 100644 --- a/man/bpe.htm +++ b/man/bpe.htm @@ -57,17 +57,17 @@

proc(pid()) -> #process{}.

Retrieves current process state (if running) from the runtime. This function should be protected against admin authorization.

next(pid()) -> {complete, any()}.

-

Invokes BPMN 2.0 process shcheduler tick.

+

Invokes BPMN 2.0 process scheduler tick.

next(any(), pid()) -> {complete, any()}.

-

Invokes BPMN 2.0 process shcheduler tick on particular flow (if allowed).

+

Invokes BPMN 2.0 process scheduler tick on particular flow (if allowed).

complete(pid()) -> {complete, any()}.

-

Invokes BPMN 1.0 process shcheduler tick.

+

Invokes BPMN 1.0 process scheduler tick.

complete(any(), pid()) -> {complete, any()}.

-

Invokes BPMN 1.0 process shcheduler tick on particular flow (if allowed).

+

Invokes BPMN 1.0 process scheduler tick on particular flow (if allowed).

amend(pid(), any()) -> {complete, any()}.

-

Invokes BPMN 2.0 process shcheduler tick with additional document in the state as an argument.

+

Invokes BPMN 2.0 process scheduler tick with additional document in the state as an argument.

discard(pid(), any()) -> {complete, any()}.

-

Invokes BPMN 2.0 process shcheduler tick with additional document removal from the the state.

+

Invokes BPMN 2.0 process scheduler tick with additional document removal from the the state.

append(pid(), any()) -> {complete, any()}.

Modifies current state of the process with additional document.

remove(pid(), any()) -> {complete, any()}.