aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Derek Murray <mrry@google.com>2016-06-08 20:48:52 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2016-06-08 22:06:30 -0700
commitb0c3a5ec88078b66828d09b528cd1e9afd72358b (patch)
treec3c114129d7e8109333da8acc7d21cbf76a803e9
parent41ebb7b5bd33ee5d3f4ccdc30ba06616f86aa877 (diff)
Correct spelling of "LegacyStringToHashBucketOp".
Change: 124426801
-rw-r--r--tensorflow/core/kernels/string_to_hash_bucket_op.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/tensorflow/core/kernels/string_to_hash_bucket_op.cc b/tensorflow/core/kernels/string_to_hash_bucket_op.cc
index fb3a507853..10fc6ee543 100644
--- a/tensorflow/core/kernels/string_to_hash_bucket_op.cc
+++ b/tensorflow/core/kernels/string_to_hash_bucket_op.cc
@@ -23,9 +23,9 @@ namespace tensorflow {
// Deprecated class. It also uses `string_tensor` as Op argument instead of
// `input`.
-class LegacyStringToHashBuckeOp : public OpKernel {
+class LegacyStringToHashBucketOp : public OpKernel {
public:
- explicit LegacyStringToHashBuckeOp(OpKernelConstruction* ctx)
+ explicit LegacyStringToHashBucketOp(OpKernelConstruction* ctx)
: OpKernel(ctx) {
OP_REQUIRES_OK(ctx, ctx->GetAttr("num_buckets", &num_buckets_));
}
@@ -55,12 +55,12 @@ class LegacyStringToHashBuckeOp : public OpKernel {
private:
int64 num_buckets_;
- TF_DISALLOW_COPY_AND_ASSIGN(LegacyStringToHashBuckeOp);
+ TF_DISALLOW_COPY_AND_ASSIGN(LegacyStringToHashBucketOp);
};
// StringToHashBucket is deprecated in favor of StringToHashBucketFast/Strong.
REGISTER_KERNEL_BUILDER(Name("StringToHashBucket").Device(DEVICE_CPU),
- LegacyStringToHashBuckeOp);
+ LegacyStringToHashBucketOp);
REGISTER_KERNEL_BUILDER(Name("StringToHashBucketFast").Device(DEVICE_CPU),
StringToHashBucketOp<Fingerprint64>);