Skip to content
Snippets Groups Projects
Commit 93a9da4c authored by David Wells's avatar David Wells :speech_balloon:
Browse files

Fix a typo in sys/tutorials/ex7.c.

parent abccdb6e
No related branches found
No related tags found
3 merge requests!7227Minor grammar fix,!7099Fix a typo in sys/tutorials/ex7.c.,!6666Draft: DMForest: set a default discretization for the coordinateDM
......@@ -189,7 +189,7 @@ static PetscErrorCode PetscLogHandlerView_Ex7(PetscLogHandler h, PetscViewer vie
ctx = (HandlerCtx)h->data;
PetscCall(PetscHMapIGetSize(ctx->running, &num_entries));
PetscCall(PetscViewerASCIIPrintf(viewer, "%" PetscInt_FMT " events were seen by the handler\n", num_entries));
PetscCall(PetscViewerASCIIPrintf(viewer, "%" PetscInt_FMT " object(s) were created and %" PetscInt_FMT " object(s) were destroyed\n", ctx->num_objects_created, ctx->num_objects_created));
PetscCall(PetscViewerASCIIPrintf(viewer, "%" PetscInt_FMT " object(s) were created and %" PetscInt_FMT " object(s) were destroyed\n", ctx->num_objects_created, ctx->num_objects_destroyed));
}
PetscFunctionReturn(PETSC_SUCCESS);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment