From 04f7bfe057dd4c460a655a134e726c47332f368a Mon Sep 17 00:00:00 2001 From: paul luse Date: Thu, 13 Feb 2020 21:37:23 +0000 Subject: [PATCH] examples/blob/hello_world: fix a few typos Signed-off-by: paul luse Change-Id: Iac7857bddbed0721d108e9f986afeab4d5911fef Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/882 Tested-by: SPDK CI Jenkins Reviewed-by: Jim Harris Reviewed-by: Shuhei Matsumoto --- examples/blob/hello_world/hello_blob.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/blob/hello_world/hello_blob.c b/examples/blob/hello_world/hello_blob.c index 2557336f8..b62e446b4 100644 --- a/examples/blob/hello_world/hello_blob.c +++ b/examples/blob/hello_world/hello_blob.c @@ -385,7 +385,7 @@ bs_init_complete(void *cb_arg, struct spdk_blob_store *bs, hello_context->io_unit_size = spdk_bs_get_io_unit_size(hello_context->bs); /* - * The blostore has been initialized, let's create a blob. + * The blobstore has been initialized, let's create a blob. * Note that we could pass a message back to ourselves using * spdk_thread_send_msg() if we wanted to keep our processing * time limited. @@ -463,7 +463,7 @@ main(int argc, char **argv) /* - * Now we'll allocate and intialize the blobstore itself. We + * Now we'll allocate and initialize the blobstore itself. We * can pass in an spdk_bs_opts if we want something other than * the defaults (cluster size, etc), but here we'll just take the * defaults. We'll also pass in a struct that we'll use for @@ -483,7 +483,7 @@ main(int argc, char **argv) if (rc) { SPDK_NOTICELOG("ERROR!\n"); } else { - SPDK_NOTICELOG("SUCCCESS!\n"); + SPDK_NOTICELOG("SUCCESS!\n"); } /* Free up memory that we allocated */ hello_cleanup(hello_context);